home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / DELPHI32 / MATH / BIN32 / BIN32.ZIP / BINLOG32.DPR < prev    next >
Text File  |  1996-03-21  |  219b  |  15 lines

  1. program BinLog32;
  2.  
  3. uses
  4.   Forms,
  5.   Bin32 in 'Bin32.pas' {Form1},
  6.   Binary32 in 'Binary32.pas';
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.Initialize;
  12.   Application.CreateForm(TForm1, Form1);
  13.   Application.Run;
  14. end.
  15.